home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / openoffice / program / officehelper.py < prev    next >
Text File  |  2008-10-15  |  4KB  |  96 lines

  1. ### *************************************************************************
  2. ### *
  3. ### *  $RCSfile: officehelper.py,v $
  4. ### *
  5. ### *  $Revision: 1.2 $
  6. ### *
  7. ### *  last change: $Author: obo $ $Date: 2006/03/22 10:46:00 $
  8. ### *
  9. ### *  The Contents of this file are made available subject to
  10. ### *  the terms of GNU Lesser General Public License Version 2.1.
  11. ### *
  12. ### *
  13. ### *    GNU Lesser General Public License Version 2.1
  14. ### *    =============================================
  15. ### *    Copyright 2005 by Sun Microsystems, Inc.
  16. ### *    901 San Antonio Road, Palo Alto, CA 94303, USA
  17. ### *
  18. ### *    This library is free software; you can redistribute it and/or
  19. ### *    modify it under the terms of the GNU Lesser General Public
  20. ### *    License version 2.1, as published by the Free Software Foundation.
  21. ### *
  22. ### *    This library is distributed in the hope that it will be useful,
  23. ### *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. ### *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  25. ### *    Lesser General Public License for more details.
  26. ### *
  27. ### *    You should have received a copy of the GNU Lesser General Public
  28. ### *    License along with this library; if not, write to the Free Software
  29. ### *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  30. ### *    MA  02111-1307  USA
  31. ### *
  32. ### ************************************************************************/
  33.  
  34. #
  35. # Translated to python from "Bootstrap.java" by Kim Kulak
  36. #
  37.  
  38. import os
  39. import random
  40. from sys import platform
  41. from time import sleep
  42.  
  43. import uno
  44. from com.sun.star.connection import NoConnectException
  45. from com.sun.star.uno import Exception as UnoException
  46.  
  47.  
  48. class BootstrapException(UnoException):
  49.     pass
  50.  
  51. def bootstrap():
  52.     """Bootstrap OOo and PyUNO Runtime.
  53.     The soffice process is started opening a named pipe of random name, then the local context is used
  54.     to access the pipe. This function directly returns the remote component context, from whereon you can
  55.     get the ServiceManager by calling getServiceManager() on the returned object.
  56.     """
  57.     try:
  58.     # soffice script used on *ix, Mac; soffice.exe used on Windoof
  59.         sOffice = os.path.join(os.path.dirname(__file__), "soffice")
  60.         if platform.startswith("win"): 
  61.             sOffice += ".exe"
  62.         
  63.         # Generate a random pipe name.
  64.         random.seed()
  65.         sPipeName = "uno" + str(random.random())[2:]
  66.         
  67.         # Start the office proces, don't check for exit status since an exception is caught anyway if the office terminates unexpectedly.
  68.         cmdArray = (sOffice, "-nologo", "-nodefault", "".join(["-accept=pipe,name=", sPipeName, ";urp;"]))        
  69.         os.spawnv(os.P_NOWAIT, sOffice, cmdArray)
  70.             
  71.         # ---------
  72.  
  73.         xLocalContext = uno.getComponentContext()
  74.         resolver = xLocalContext.ServiceManager.createInstanceWithContext(
  75.             "com.sun.star.bridge.UnoUrlResolver", xLocalContext)
  76.         sConnect = "".join(["uno:pipe,name=", sPipeName, ";urp;StarOffice.ComponentContext"])
  77.  
  78.         # Wait until an office is started, but loop only nLoop times (can we do this better???)
  79.         nLoop = 20
  80.         while True:
  81.             try:
  82.                 xContext = resolver.resolve(sConnect)
  83.                 break
  84.             except NoConnectException:
  85.                 nLoop -= 1
  86.                 if nLoop <= 0:
  87.                     raise BootstrapException("Cannot connect to soffice server.", None)
  88.                 sleep(0.5)  # Sleep 1/2 second.
  89.  
  90.     except BootstrapException:
  91.         raise     
  92.     except Exception, e:  # Any other exception
  93.         raise BootstrapException("Caught exception " + str(e), None)
  94.  
  95.     return xContext
  96.